Verify that aa is not empty.
UnitTestException on failure.
1 int[] ints; 2 string[] strings; 3 string[string] aa; 4 5 ints ~= 1; 6 strings ~= "foo"; 7 aa["foo"] = "bar"; 8 9 shouldNotBeEmpty(ints); 10 shouldNotBeEmpty(strings); 11 shouldNotBeEmpty(aa);
See Implementation
Verify that aa is not empty.